home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / XQLVARBL.H < prev   
Text File  |  1993-06-10  |  562b  |  36 lines

  1. /**************************************************
  2. *
  3. * FILE NAME: xqlvarbl.h  TITLE: XQL/NWSQL variables
  4. *
  5. * AUTHOR:      Ken North
  6. *
  7. * SYNOPSIS: 
  8. *
  9. *     Variables for use with Netware SQL and 
  10. *     XQL Manager (XQLM)
  11. *
  12. ***************************************************/
  13.  
  14. #ifndef __XQLVARBL_H
  15. #define __XQLVARBL_H
  16.  
  17. #ifndef __XQLDEFS_H
  18.     #include "xqldefs.h"
  19. #endif
  20.  
  21. #ifndef __XCOLUMN_H
  22.     #include "xcolumn.h"
  23. #endif
  24.  
  25. int      XQL_status;
  26. int      StatementLen;
  27. int      ColPosition;
  28.  
  29. char    statement [500];
  30. char    records[XRECSIZE];
  31.  
  32. #endif
  33.  
  34.  
  35.  
  36.